* xterm.c (x_error_quitter, x_io_error_quitter): Remove calls to
authorJim Blandy <jimb@redhat.com>
Sat, 12 Jun 1993 16:52:03 +0000 (16:52 +0000)
committerJim Blandy <jimb@redhat.com>
Sat, 12 Jun 1993 16:52:03 +0000 (16:52 +0000)
abort.  We can always run Emacs with _Xdebug set to 1.

src/xterm.c

index 54e19a459287a7efb4fed897cc952e855bb83876..a9a10297befe6a3e48964e4f6135e524779fcc92 100644 (file)
@@ -3803,9 +3803,11 @@ x_error_quitter (display, error)
   fprintf (stderr, "X protocol error: %s on protocol request %d\n",
           buf, error->request_code);
 
+#if 0
   /* While we're testing Emacs 19, we'll just dump core whenever we
      get an X error, so we can figure out why it happened.  */
   abort ();
+#endif
 
   x_connection_closed ();
 }
@@ -3820,9 +3822,11 @@ x_io_error_quitter (display)
   fprintf (stderr, "Connection to X server %s lost.\n",
           XDisplayName (DisplayString (display)));
 
+#if 0
   /* While we're testing Emacs 19, we'll just dump core whenever we
      get an X error, so we can figure out why it happened.  */
   abort ();
+#endif
 
   x_connection_closed ();
 }